Welcome![Sign In][Sign Up]
Location:
Search - android binder

Search list

[androidAndroid-IPC-Binder

Description: I will use call IAudioFlinger::setMode API as a sample scenario to show how the Android IPC system works. AudioFlinger is a service in the media_server program
Platform: | Size: 79872 | Author: Richard | Hits:

[androidBinder

Description: Android Binder Renference
Platform: | Size: 80896 | Author: KimJuHyok | Hits:

[androidandroid-binder-shenruqainchu

Description: android 深入浅出 binder 机制,由浅入深详述了android进程间通信实现机制-android layman binder mechanism, Deep detailing the android to achieve inter-process communication mechanism
Platform: | Size: 31744 | Author: 龚孝波 | Hits:

[androidAndroid-IPC-binder-

Description: 自己写的给公司开发人员关于ANDROID BINDER机制的一个培训材料-Their developers to write to the company as a mechanism for ANDROID BINDER training materials
Platform: | Size: 80896 | Author: huang | Hits:

[androidandroid-native-server

Description: 一个关于如何在android2.2源码中写本地NATIVE服务的可用例子-Android2.2 a source on how to write in the local service available examples NATIVE
Platform: | Size: 222208 | Author: huang | Hits:

[androidServiceBinderExample

Description: 关于Android的Intent和服务的之间的数据传递-Intent on Android and services to pass data between
Platform: | Size: 11264 | Author: jary | Hits:

[androidAndroid-binder

Description: Android的binder机制研究(C++部分),通过对Android媒体播放器的反向分析,给出binder的类图,并详细定义了接口类、定义和实现binder类、BnMediaPlayService代码分析-Android s binder mechanism (C++ section), the Android media player through the reverse analysis, given the binder of class diagrams, and detailed definition of the interface classes to define and implement binder class, BnMediaPlayService Code Analysis
Platform: | Size: 212992 | Author: ycy | Hits:

[androiddepth-understanding-of-Andorid

Description: 深入理解Android重难点解析,主要重点分析了JNI、init、Android常用类、Binder、Audio系统和Surface系统。-Android-depth understanding of heavy and difficult to resolve, mainly focused on analyzing the JNI, init, Android commonly used type, Binder, Audio Systems, and Surface Systems.
Platform: | Size: 745472 | Author: 寒风 | Hits:

[androidserviceconnect

Description: Android binder IPC simple 2 way communication example
Platform: | Size: 72704 | Author: stada | Hits:

[androidAndroid

Description: Android进程间通信机制(Binder)介绍-Android Binder
Platform: | Size: 628736 | Author: niejing | Hits:

[Embeded Linuxandroid_binder_cPP

Description: android+binder实例(C++层)-android+binder(C++)
Platform: | Size: 26624 | Author: HUGH | Hits:

[Software EngineeringAndroid-Framework

Description: 一 JNI重难点分析 1.1 注册方法的选择 1.2 垃圾回收 二 init重难点分析 2.1 keywords.h的有趣用法 2.2 用好“DllMain函数”——客户端Property读取的实现 三 Android常用类重难点分析 3.1 RefBase、sp和wp 3.2 题外话——无所不用其极 四 Binder重难点分析 4.1 时空穿越魔术揭秘 4.2 Binder和线程的关系 五 Audio系统重难点分析 5.1 AudioTrack & 方法论 5.2 AudioFlinger中的对象 5.3 AudioPolicyService实例 5.4 audio_control_block_t分析 5.5 学习并实践Desktop Check 六 Surface系统重难点分析 6.1 来之不易的Activity 6.2 乾坤大挪移——如何与SurfaceFlinger建立联系? 6.3 生产者和消费者之间的纽带 6.4 SurfaceFlinger的工作流程分析 6.5 Transaction分析 6.6 CameraService中的严重bug 6.7 PageFlip过程分析-A JNI heavy and difficult to analyze the choice of methods 1.2 1.1 Registered garbage collection two heavy and difficult to analyze init interesting usage 2.2 2.1 keywords.h good use " DllMain function" - read client Property type commonly used to achieve three important difficulties in analyzing Android 3.1 RefBase , sp and wp 3.2 Digression- doing their utmost four Binder space through heavy and difficult to analyze 4.1 4.2 Binder and thread Magic Secret Relationship Difficulties five Audio system weighs 5.1 AudioTrack & Methodology 5.2 AudioFlinger instance of the object 5.3 AudioPolicyService 5.4 audio_control_block_t learn and practice analysis 5.5 Desktop Check six Surface system weighs 6.1 Difficulties hard-earned Activity 6.2 Qian Kun Da Nuo- how to establish contact with SurfaceFlinger? 6.3 The link between producers and consumers 6.4 SurfaceFlinger workflow analysis 6.5 Transaction Analysis 6.6 CameraService of serious bug 6.7 PageFlip process analysis
Platform: | Size: 620544 | Author: 贾诩 | Hits:

[Software Engineeringght

Description: 高焕堂:Android&Java的线程框架与模式 Android架构师手册_建模与图形思考 活用Android的IPC机制与Binder 框架 如何开发Android应用框架 Android 的NDK 与JNI雕龙小技-GAO Huan-tang: Android & Java threads Framework and modalities Android Architect Manual _ utilize modeling and graphical thinking Android Binder IPC mechanism and framework for how to develop Android' s NDK Android application framework Diao little skill with JNI
Platform: | Size: 28105728 | Author: zhurui | Hits:

[Program docAndroid-Binder-CPP-Interface-InternalL2

Description: Android Binder Explained
Platform: | Size: 349184 | Author: sumit | Hits:

[OtherHelloWorldService

Description: 按照android Binder框架自己实现的一个Binder例子,代码的功能是将客户端输入的字符串进行大小写转换-Framework in accordance with android Binder Binder own implementation of an example, the code is the function of the client input string case conversion
Platform: | Size: 67584 | Author: Mr zhang | Hits:

[Internet-NetworkAndroid_Binder_IPC

Description: android binder通信介绍。binder 通信是一种client-server 的通信结构, 1. 从表面上来看,是client 通过获得一个server 的代理接口,对server 进行直接调用; 2. 实际上,代理接口中定义的方法与server 中定义的方法是一一对应的; 3.client 调用某个代理接口中的方法时,代理接口的方法会将client 传递的参数打包成为Parcel 对象; 4. 代理接口将该Parcel 发送给内核中的binder driver. 5.server 会读取binder driver 中的请求数据,如果是发送给自己的,解包Parcel 对象,处理并将结果返-android binder communication。
Platform: | Size: 53248 | Author: zou | Hits:

[Linux-Unixbinder

Description: Android IPC Subsystem for Linux v2.13.6.
Platform: | Size: 21504 | Author: herwozu | Hits:

[Linux-Unixbinder

Description: Android IPC Subsystem for Linux v2.13.6.
Platform: | Size: 22528 | Author: qfjonkm | Hits:

[Program docbinder

Description: Androidbinder通信框架,通俗易懂,容易上手材料。-Android binder
Platform: | Size: 76800 | Author: liujunjie | Hits:

[OtherAndroid Binder设计与实现.pdf

Description: android' binder的学习资料pdf(The material of android binder)
Platform: | Size: 516096 | Author: 开发猪 | Hits:
« 12 »

CodeBus www.codebus.net